找传奇、传世资源到传世资源站!

pygame画移动矩形

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

pygame画移动矩形
from clipboard

import pygame
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((600,500))
pygame.display.set_caption("Drawing Rectangles")
pos_x=300
pos_y=250
vel_x=2
vel_y=1
while True:
    for event in pygame.event.get():
        if event.type in (QUIT,KEYDOWN):
            sys.exit()
    screen.fill((0,0,200))
    #move the rectangle
    pos_x =vel_x
    pos_y =vel_y
    #keep rectangle on the screen
    if pos_x>500 or pos_x<0:
        vel_x=-vel_x
    if pos_y>300 or pos_y<0:
        vel_y=-vel_y
    #draw the rectangle
    color=255,255,0
    width=0 #solid fill
    pos=pos_x,pos_y,100,100
    pygame.draw.rect(screen,color,pos,width)
    pygame.display.update()    

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复